In [4]:
# librerias
import numpy as np
import pandas as pd
In [5]:
df = pd.read_csv('../../data/example')
df
Out[5]:
In [6]:
df.to_csv('../../data/example',index=False)
In [7]:
pd.read_excel('../../data/Excel_Sample.xlsx',sheetname='Sheet1')
Out[7]:
In [8]:
df.to_excel('../../data/Excel_Sample.xlsx',sheet_name='Sheet1')
In [7]:
# link 'http://www.fdic.gov/bank/individual/failed/banklist.html'
df = pd.read_clipboard()
In [9]:
df.head()
Out[9]: